home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000313_news@columbia.edu _Wed Jul 21 09:55:20 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA23582
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 21 Jul 1999 09:55:20 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA17686
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 21 Jul 1999 09:42:24 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Need help sending file via modem using kermit
  11. Date: 21 Jul 1999 13:42:23 GMT
  12. Organization: Columbia University
  13. Message-ID: <7n4inv$h8k$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <379511A9.D008547F@george.ach.uams.edu>,
  17. Alvis D. Harding Jr. <adh@george.ach.uams.edu> wrote:
  18. : I'm trying to send a file via modem using C-Kermit 7.0 Beta.08 under
  19. : SunOS 4.1.4 using the Zmodem protocol.  So far I've been able to figure
  20. : out the following steps that I think I need to make to send the file.
  21. : set modem type usrobotics
  22. : set line /dev/ttyC53
  23. : set speed 115200
  24. : dial 123-4567
  25. So far so good...
  26.  
  27. : Now what do I need to do to send a file from the kermit side to the
  28. : remote system that's connected (in this case a Hyperterminal session
  29. : which doesn't even require a login!)?  I think I need to do a 'ctrl-\'
  30. : and then a 'send /protocol:zmodem file.zip' but this starts the zmodem
  31. : transfer to the telnet session I'm logging into from, not to the remote
  32. : system on the other end of the modem.  I know I'm missing something
  33. : really simple!  I'm trying to automate the transfer of several files...
  34. : I should be able to automate all this using a fairly simple wermit
  35. : script, right?
  36. Normally one dials from Windows to UNIX, not the other way around.  Windows
  37. is not designed or intended to be accessed remotely.  While this might be
  38. possible with third-party products (like Kermit 95) that include a "host
  39. mode":
  40.  
  41.   http://www.columbia.edu/kermit/k95host.html
  42.  
  43. I have no idea whether it can be done with Hyperterminal.
  44.  
  45. Also, using Zmodem through C-Kermit introduces a whole new layer of
  46. complexity (interfacing with external protocols).  See:
  47.  
  48.   http://www.columbia.edu/kermit/faq-c-ext.html
  49.  
  50. for details.  Although I can't vouch for the Kermit protocol implementation
  51. in Hyperterminal, I'd suggest that you start with Kermit protocol, and then
  52. if you find it not fast enough, either (a) replace Hyperterminal by K-95,
  53. or (b) start your hunt for a Zmodem program for SunOS that you can legally
  54. use as an external protocol.
  55.  
  56. - Frank